home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / Icon 8.1 / msm-1 / icont.sit / keyword.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-09-19  |  1.4 KB  |  70 lines  |  [TEXT/MPS ]

  1. #include "::h:keyword.h"
  2. #include "tsym.h"
  3.  
  4. /*
  5.  * Keyword table.
  6.  */
  7.  
  8. struct keyent keytab[] = {
  9.    "allocated",    K_ALLOCATED,
  10.    "ascii",    K_ASCII,
  11.    "clock",    K_CLOCK,
  12.    "col",    K_COL,
  13.    "column",    K_COLUMN,
  14.    "collections",    K_COLLECTIONS,
  15.    "cset",    K_CSET,
  16.    "current",    K_CURRENT,
  17.    "date",    K_DATE,
  18.    "dateline",    K_DATELINE,
  19.    "digits",    K_DIGITS,
  20.    "e",    K_E,
  21.    "error",    K_ERROR,
  22.    "errornumber",    K_ERRORNUMBER,
  23.    "errortext",    K_ERRORTEXT,
  24.    "errorvalue",    K_ERRORVALUE,
  25.    "errout",    K_ERROUT,
  26.    "eventcode",    K_EVENTCODE,
  27.    "eventsource",    K_EVENTSOURCE,
  28.    "eventvalue",    K_EVENTVALUE,
  29.    "fail",    K_FAIL,
  30.    "features",    K_FEATURES,
  31.    "file",    K_FILE,
  32.    "host",    K_HOST,
  33.    "input",    K_INPUT,
  34.    "lcase",    K_LCASE,
  35.    "ldrag",    K_LDRAG,
  36.    "letters",    K_LETTERS,
  37.    "level",    K_LEVEL,
  38.    "line",    K_LINE,
  39.    "lpress",    K_LPRESS,
  40.    "lrelease",    K_LRELEASE,
  41.    "main",    K_MAIN,
  42.    "mdrag",    K_MDRAG,
  43.    "mpress",    K_MPRESS,
  44.    "mrelease",    K_MRELEASE,
  45.    "null",    K_NULL,
  46.    "output",    K_OUTPUT,
  47.    "phi",    K_PHI,
  48.    "pi",    K_PI,
  49.    "pos",    K_POS,
  50.    "progname",    K_PROGNAME,
  51.    "random",    K_RANDOM,
  52.    "rdrag",    K_RDRAG,
  53.    "regions",    K_REGIONS,
  54.    "resize",    K_RESIZE,
  55.    "row",    K_ROW,
  56.    "rpress",    K_RPRESS,
  57.    "rrelease",    K_RRELEASE,
  58.    "source",    K_SOURCE,
  59.    "storage",    K_STORAGE,
  60.    "subject",    K_SUBJECT,
  61.    "time",    K_TIME,
  62.    "trace",    K_TRACE,
  63.    "ucase",    K_UCASE,
  64.    "version",    K_VERSION,
  65.    "window",    K_WINDOW,
  66.    "x",    K_X,
  67.    "y",    K_Y,
  68.    "",        -1
  69.    };
  70.